internal/runtime/maps.Iter.m (field)

17 uses

	internal/runtime/maps (current package)
		table.go#L645: 	m    *Map
		table.go#L693: 	it.m = m
		table.go#L708: 	return it.m
		table.go#L753: 	entries := 1 << (it.m.globalDepth - it.tab.localDepth)
		table.go#L763: 	newKey, newElem, ok := it.m.getWithKey(it.typ, key)
		table.go#L788: 		if it.clearSeq == it.m.clearSeq && !it.typ.Key.Equal(key, key) {
		table.go#L811: 	if it.m == nil {
		table.go#L818: 	if it.m.writing != 0 {
		table.go#L842: 			grown := it.m.dirLen > 0
		table.go#L846: 				newKey, newElem, ok := it.m.getWithKey(it.typ, key)
		table.go#L849: 					if it.clearSeq == it.m.clearSeq && !it.typ.Key.Equal(key, key) {
		table.go#L878: 	if it.globalDepth != it.m.globalDepth {
		table.go#L908: 		orders := it.m.globalDepth - it.globalDepth
		table.go#L913: 		it.globalDepth = it.m.globalDepth
		table.go#L917: 	for ; it.dirIdx < it.m.dirLen; it.nextDirIdx() {
		table.go#L920: 			dirIdx := int((uint64(it.dirIdx) + it.dirOffset) & uint64(it.m.dirLen-1))
		table.go#L921: 			newTab := it.m.directoryAt(uintptr(dirIdx))